From: Glenn Morris Date: Sat, 2 Feb 2008 04:17:54 +0000 (+0000) Subject: (whitespace-char-valid-p): Use characterp rather than char-valid-p. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~24380 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=434b9acba5f119e5005bc81b351160605fb819c6;p=emacs.git (whitespace-char-valid-p): Use characterp rather than char-valid-p. --- diff --git a/lisp/whitespace.el b/lisp/whitespace.el index 77ced4e0917..9f11172ad63 100644 --- a/lisp/whitespace.el +++ b/lisp/whitespace.el @@ -1686,7 +1686,7 @@ options are valid." (defsubst whitespace-char-valid-p (char) ;; This check should be improved!!! (or (< char 256) - (char-valid-p char))) + (characterp char))) (defun whitespace-display-vector-p (vec)